home *** CD-ROM | disk | FTP | other *** search
/ Euroscene 1 / Euroscene 1.iso / resource / source.the / ts_v6a.dms / ts_v6a.adf / Source / Misc / ReactDiff.lha / ReactionDiffusion / makefile < prev    next >
Encoding:
Makefile  |  1993-01-29  |  311 b   |  17 lines

  1. # spots by reaction-diffusion
  2.  
  3. CFLAGS = -O -I. -I/usr/include
  4. LIBS = /usr/local/lib/X11R4/libX11.a -lm
  5.  
  6. OBJ1 = linear.o graphics.o
  7. OBJ2 = spots.o graphics.o
  8.  
  9. current: spots linear
  10.  
  11. linear: $(OBJ1) makefile
  12.     cc -o linear $(OBJ1) $(LIBS) $(CFLAGS)
  13.  
  14. spots: $(OBJ2) makefile
  15.     cc -o spots $(OBJ2) $(LIBS) $(CFLAGS)
  16.  
  17.